include ../Rules.mk

all:
	for i in step*;			\
	do				\
	    if test -d $$i; then	\
		(cd $$i; $(MAKE))	\
	    fi;				\
	done
